home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / Developer University / DU Projects / Sample2 / Sources / Frame.h < prev    next >
Encoding:
Text File  |  1996-08-22  |  1.0 KB  |  37 lines  |  [TEXT/CWIE]

  1. //    Release Version:    $ ODF 2 $
  2. //    Copyright:            (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  3.  
  4. #ifndef FRAME_H
  5. #define FRAME_H
  6.  
  7. //=======================================================================
  8. // ----- Framework Includes -----
  9. #ifndef FWFRAME_H
  10. #include <FWFrame.h>        // FW_CFrame
  11. #endif
  12.  
  13. //=======================================================================
  14. class CSample2Part;
  15. class DevUniv_STalker;
  16.  
  17. //=======================================================================
  18. class CSample2Frame : public FW_CFrame {
  19. public:
  20.     FW_DECLARE_AUTO(CSample2Frame)
  21.                         CSample2Frame(Environment* ev, 
  22.                                     ODFrame* odFrame, 
  23.                                     FW_CPresentation* presentation, 
  24.                                     CSample2Part* sample2Part);
  25.     virtual             ~CSample2Frame();
  26. protected:
  27. // overrides
  28.     virtual void        Draw(Environment* ev, 
  29.                              ODFacet* odFacet, 
  30.                              ODShape* invalidShape);
  31. private:
  32.     DevUniv_STalker*    fSOMTalker;    // SOM object for speech synthesis
  33. };
  34.  
  35. //=======================================================================
  36. #endif
  37.